From 4914aeed91bda2a0e6c65d7b3d6fd9e709f98714 Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild.aw" Date: Fri, 17 Feb 2006 14:49:58 -0700 Subject: [PATCH] [IA64] wrong type cast in ia64_hypercall This is wrong type cast. This patch fix warnning of incompatible pointer type. Signed-off-by: Akio Takebe --- xen/arch/ia64/xen/hypercall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/ia64/xen/hypercall.c b/xen/arch/ia64/xen/hypercall.c index 707f9083ed..76ebec31f5 100644 --- a/xen/arch/ia64/xen/hypercall.c +++ b/xen/arch/ia64/xen/hypercall.c @@ -63,7 +63,7 @@ hypercall_t ia64_hypercall_table[] = int ia64_hypercall (struct pt_regs *regs) { - struct vcpu *v = (struct domain *) current; + struct vcpu *v = current; struct sal_ret_values x; unsigned long *tv, *tc; int pi; -- 2.30.2